type runtime.guintptr

25 uses

	runtime (current package)
		mgc.go#L1165: 	gp guintptr
		proc.go#L1404: 	_g_.sched.g = guintptr(unsafe.Pointer(_g_))
		proc.go#L1691: 	g   guintptr
		proc.go#L1901: 	gp.sched.g = guintptr(unsafe.Pointer(gp))
		proc.go#L4109: 	newg.sched.g = guintptr(unsafe.Pointer(newg))
		proc.go#L5687: 		if !_p_.runnext.cas(oldnext, guintptr(unsafe.Pointer(gp))) {
		proc.go#L5857: func runqgrab(_p_ *p, batch *[256]guintptr, batchHead uint32, stealRunNextG bool) uint32 {
		proc.go#L5934: 	head guintptr
		proc.go#L5935: 	tail guintptr
		proc.go#L6001: 	head guintptr
		runtime2.go#L260: type guintptr uintptr
		runtime2.go#L263: func (gp guintptr) ptr() *g { return (*g)(unsafe.Pointer(gp)) }
		runtime2.go#L266: func (gp *guintptr) set(g *g) { *gp = guintptr(unsafe.Pointer(g)) }
		runtime2.go#L269: func (gp *guintptr) cas(old, new guintptr) bool {
		runtime2.go#L278: 	(*guintptr)(unsafe.Pointer(gp)).set(new)
		runtime2.go#L329: 	g    guintptr
		runtime2.go#L439: 	schedlink    guintptr
		runtime2.go#L527: 	caughtsig     guintptr // goroutine running during fatal signal
		runtime2.go#L554: 	lockedg       guintptr
		runtime2.go#L572: 	libcallg  guintptr
		runtime2.go#L618: 	runq     [256]guintptr
		runtime2.go#L631: 	runnext guintptr
		trace.go#L128: 	reader        guintptr        // goroutine that called ReadTrace, or nil